home *** CD-ROM | disk | FTP | other *** search
- CLS
-
- ECHO *** Deleting old executable (if present) ***
- IF EXIST MDIDemo.exe DEL MDIDemo.exe
- ECHO.
-
-
- ECHO *** Compiling MDIDemo.dpr ***
- dccil -nsBorland.Vcl; -LuSystem.Windows.Forms -u"C:\Program Files\Borland\BDS\2.0\units" MDIDemo.dpr
- IF ERRORLEVEL 1 GOTO BadExit
-
-
- GOTO Exit
-
- :BadExit
-
- ECHO.
- ECHO An error occurred during the build process
- PAUSE
- GOTO Exit
-
- :Exit